Security News
Python Overtakes JavaScript as Top Programming Language on GitHub
Python becomes GitHub's top language in 2024, driven by AI and data science projects, while AI-powered security tools are gaining adoption.
rehype-parse
Advanced tools
rehype-parse is a plugin for the unified processor that parses HTML into a syntax tree. It is part of the rehype ecosystem, which is a toolset for transforming HTML with plugins. This package is particularly useful for processing and manipulating HTML content programmatically.
Basic HTML Parsing
This feature allows you to parse a simple HTML string into a syntax tree. The code sample demonstrates how to parse an HTML string and inspect the resulting tree structure.
const unified = require('unified');
const parse = require('rehype-parse');
const inspect = require('unist-util-inspect');
const html = '<h1>Hello, world!</h1>';
const tree = unified()
.use(parse)
.parse(html);
console.log(inspect(tree));
Parsing with Options
This feature allows you to parse HTML with specific options. In this example, the 'fragment' option is set to true, which allows parsing of HTML fragments instead of full documents.
const unified = require('unified');
const parse = require('rehype-parse');
const inspect = require('unist-util-inspect');
const html = '<h1>Hello, world!</h1>';
const tree = unified()
.use(parse, { fragment: true })
.parse(html);
console.log(inspect(tree));
Integration with Other Plugins
This feature demonstrates how to integrate rehype-parse with other plugins in the rehype ecosystem. The code sample shows how to parse HTML and then stringify it back to HTML.
const unified = require('unified');
const parse = require('rehype-parse');
const stringify = require('rehype-stringify');
const html = '<h1>Hello, world!</h1>';
const output = unified()
.use(parse)
.use(stringify)
.processSync(html)
.toString();
console.log(output);
htmlparser2 is a fast and forgiving HTML/XML parser. It is more low-level compared to rehype-parse and provides a SAX-style parser, which can be more complex to use but offers more control over the parsing process.
parse5 is a highly compliant HTML parser that closely follows the WHATWG HTML specification. It is similar to rehype-parse in terms of compliance and ease of use but is a standalone parser without the plugin ecosystem that rehype offers.
jsdom is a JavaScript implementation of the DOM and HTML standards. It is more heavyweight compared to rehype-parse and is used for simulating a browser environment, making it suitable for more complex DOM manipulations and testing.
rehype plugin to parse HTML. Parser for unified. Parses HTML to hast syntax trees. Used in the rehype processor but can be used on its own as well.
If youβre in a browser, trust the content, and value a smaller bundle size, use
rehype-dom-parse
.
Gatsby π₯ |
Vercel π₯ |
Netlify | ||
Holloway |
ThemeIsle π₯ |
BoostIO π₯ |
Expo π₯ |
You? |
npm:
npm install rehype-parse
This example shows how we can parse HTML with this module and configure it to
emit parse errors except for duplicate attributes.
Then we transform HTML to Markdown with rehype-remark
and
finally serialize that Markdown with remark-stringify
.
Say we have the following file, example.html
, with a few errors:
<!doctypehtml>
<title class="a" class="b">Helloβ¦</title>
<h1/>World!</h1>
β¦and our script, example.js
, looks as follows:
var vfile = require('to-vfile')
var report = require('vfile-reporter')
var unified = require('unified')
var parse = require('rehype-parse')
var rehype2remark = require('rehype-remark')
var stringify = require('remark-stringify')
unified()
.use(parse, {emitParseErrors: true, duplicateAttribute: false})
.use(rehype2remark)
.use(stringify)
.process(vfile.readSync('example.html'), function(err, file) {
console.error(report(err || file))
console.log(String(file))
})
Now, running node example
yields:
example.html
1:10-1:10 warning Missing whitespace before doctype name missing-whitespace-before-doctype-name parse-error
3:1-3:6 warning Unexpected trailing slash on start tag of non-void element non-void-html-element-start-tag-with-trailing-solidus parse-error
β 2 warnings
# World!
processor.use(parse[, options])
Configure processor
to parse HTML and create a hast syntax tree.
options
options.fragment
Specify whether to parse a fragment (boolean
, default: false
), instead of a
complete document.
In document mode, unopened html
, head
, and body
elements are opened in
just the right places.
options.space
β οΈ rehype is not an XML parser. It support SVG as embedded in HTML, but not the features available in the rest of XML/SVG. Passing SVG files could strip useful information, but fragments of modern SVG should be fine.
Which space the document is in ('svg'
or 'html'
, default: 'html'
).
If an svg
element is found in the HTML space, parse
automatically
switches to the SVG space when entering the element, and switches
back when exiting.
Note: make sure to set fragment: true
if space: 'svg'
.
options.emitParseErrors
β οΈ Parse errors are currently being added to HTML. Not all errors emitted by parse5 (or rehype-parse) are specced yet. Some documentation may still be missing.
Emit parse errors while parsing on the vfile (boolean
, default: false
).
Setting this to true starts emitting HTML parse errors.
Specific rules can be turned off by setting them to false
(or 0
).
The default, when emitParseErrors: true
, is true
(or 1
), and means that
rules emit as warnings.
Rules can also be configured with 2
, to turn them into fatal errors.
The specific parse errors that are currently supported are detailed below:
abandonedHeadElementChild
β unexpected metadata element after head (example)abruptClosingOfEmptyComment
β unexpected abruptly closed empty comment (example)abruptDoctypePublicIdentifier
β unexpected abruptly closed public identifier (example)abruptDoctypeSystemIdentifier
β unexpected abruptly closed system identifier (example)absenceOfDigitsInNumericCharacterReference
β unexpected non-digit at start of numeric character reference (example)cdataInHtmlContent
β unexpected CDATA section in HTML (example)characterReferenceOutsideUnicodeRange
β unexpected too big numeric character reference (example)closingOfElementWithOpenChildElements
β unexpected closing tag with open child elements (example)controlCharacterInInputStream
β unexpected control character (example)controlCharacterReference
β unexpected control character reference (example)disallowedContentInNoscriptInHead
β disallowed content inside `<noscript>` in `<head>` (example)duplicateAttribute
β unexpected duplicate attribute (example)endTagWithAttributes
β unexpected attribute on closing tag (example)endTagWithTrailingSolidus
β unexpected slash at end of closing tag (example)endTagWithoutMatchingOpenElement
β unexpected unopened end tag (example)eofBeforeTagName
β unexpected end of file (example)eofInCdata
β unexpected end of file in CDATA (example)eofInComment
β unexpected end of file in comment (example)eofInDoctype
β unexpected end of file in doctype (example)eofInElementThatCanContainOnlyText
β unexpected end of file in element that can only contain text (example)eofInScriptHtmlCommentLikeText
β unexpected end of file in comment inside script (example)eofInTag
β unexpected end of file in tag (example)incorrectlyClosedComment
β incorrectly closed comment (example)incorrectlyOpenedComment
β incorrectly opened comment (example)invalidCharacterSequenceAfterDoctypeName
β invalid sequence after doctype name (example)invalidFirstCharacterOfTagName
β invalid first character in tag name (example)misplacedDoctype
β misplaced doctype (example)misplacedStartTagForHeadElement
β misplaced `<head>` start tag (example)missingAttributeValue
β missing attribute value (example)missingDoctype
β missing doctype before other content (example)missingDoctypeName
β missing doctype name (example)missingDoctypePublicIdentifier
β missing public identifier in doctype (example)missingDoctypeSystemIdentifier
β missing system identifier in doctype (example)missingEndTagName
β missing name in end tag (example)missingQuoteBeforeDoctypePublicIdentifier
β missing quote before public identifier in doctype (example)missingQuoteBeforeDoctypeSystemIdentifier
β missing quote before system identifier in doctype (example)missingSemicolonAfterCharacterReference
β missing semicolon after character reference (example)missingWhitespaceAfterDoctypePublicKeyword
β missing whitespace after public identifier in doctype (example)missingWhitespaceAfterDoctypeSystemKeyword
β missing whitespace after system identifier in doctype (example)missingWhitespaceBeforeDoctypeName
β missing whitespace before doctype name (example)missingWhitespaceBetweenAttributes
β missing whitespace between attributes (example)missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers
β missing whitespace between public and system identifiers in doctype (example)nestedComment
β unexpected nested comment (example)nestedNoscriptInHead
β unexpected nested `<noscript>` in `<head>` (example)nonConformingDoctype
β unexpected non-conforming doctype declaration (example)nonVoidHtmlElementStartTagWithTrailingSolidus
β unexpected trailing slash on start tag of non-void element (example)noncharacterCharacterReference
β unexpected noncharacter code point referenced by character reference (example)noncharacterInInputStream
β unexpected noncharacter character (example)nullCharacterReference
β unexpected NULL character referenced by character reference (example)openElementsLeftAfterEof
β unexpected end of file (example)surrogateCharacterReference
β unexpected surrogate character referenced by character reference (example)surrogateInInputStream
β unexpected surrogate characterunexpectedCharacterAfterDoctypeSystemIdentifier
β invalid character after system identifier in doctype (example)unexpectedCharacterInAttributeName
β unexpected character in attribute name (example)unexpectedCharacterInUnquotedAttributeValue
β unexpected character in unquoted attribute value (example)unexpectedEqualsSignBeforeAttributeName
β unexpected equals sign before attribute name (example)unexpectedNullCharacter
β unexpected NULL character (example)unexpectedQuestionMarkInsteadOfTagName
β unexpected question mark instead of tag name (example)unexpectedSolidusInTag
β unexpected slash in tag (example)unknownNamedCharacterReference
β unexpected unknown named character reference (example)options.verbose
Patch extra positional information (boolean
, default: false
).
If specified, the following element:
<img src="#" alt>
β¦has the following data
:
{ position:
{ opening:
{ start: { line: 1, column: 1, offset: 0 },
end: { line: 1, column: 18, offset: 17 } },
closing: null,
properties:
{ src:
{ start: { line: 1, column: 6, offset: 5 },
end: { line: 1, column: 13, offset: 12 } },
alt:
{ start: { line: 1, column: 14, offset: 13 },
end: { line: 1, column: 17, offset: 16 } } } } }
parse.Parser
Access to the parser, if you need it.
As rehype works on HTML, and improper use of HTML can open you up to a
cross-site scripting (XSS) attack, use of rehype can also be unsafe.
Use rehype-sanitize
to make the tree safe.
See contributing.md
in rehypejs/.github
for ways
to get started.
See support.md
for ways to get help.
Ideas for new plugins and tools can be posted in rehypejs/ideas
.
A curated list of awesome rehype resources can be found in awesome rehype.
This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.
MIT Β© Titus Wormer
FAQs
rehype plugin to parse HTML
The npm package rehype-parse receives a total of 602,320 weekly downloads. As such, rehype-parse popularity was classified as popular.
We found that rehype-parse demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.Β It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Python becomes GitHub's top language in 2024, driven by AI and data science projects, while AI-powered security tools are gaining adoption.
Security News
Dutch National Police and FBI dismantle Redline and Meta infostealer malware-as-a-service operations in Operation Magnus, seizing servers and source code.
Research
Security News
Socket is tracking a new trend where malicious actors are now exploiting the popularity of LLM research to spread malware through seemingly useful open source packages.